home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / WINDOWS / MWPROPVW.ARJ / PROPVIEW.H < prev    next >
Text File  |  1992-01-24  |  2KB  |  83 lines

  1. //
  2. // A couple of menu #defines
  3. //
  4.  
  5. #define IDM_EXIT    100
  6. #define IDM_ABOUT    101
  7.  
  8. #define IDM_GO        110
  9.  
  10.  
  11. //
  12. // #Defines for controls in main dialog
  13. //
  14.  
  15. #define IDC_HWND                120
  16. #define IDC_CAPTION                121
  17. #define IDC_HWNDPARENT            122
  18. #define IDC_PARENTCAPTION        123
  19. #define IDC_HINST                124
  20. #define IDC_RECT                125
  21. #define IDC_POS                    126
  22. #define IDC_HWNDICON            127
  23. #define IDC_PARENTICON            128
  24.  
  25. #define IDC_CHILDREN            135
  26. #define IDC_PROPERTIES            136
  27. #define IDC_DATA                137
  28. #define IDC_SENDMSG                138
  29. #define IDC_STYLES                139
  30. #define IDC_SPY                    141
  31.  
  32. #define IDC_HEX                    150
  33. #define IDC_DEC                    151
  34.  
  35. #define IDC_SCREEN                155
  36. #define IDC_DIALOG                156
  37.  
  38.  
  39. //
  40. // Controls in wnd/class extra data window
  41. //
  42.  
  43. #define IDC_WNDTEXT                120
  44. #define IDC_WNDLIST                121
  45. #define IDC_CLSTEXT                122
  46. #define IDC_CLSLIST                123
  47.  
  48.  
  49. //
  50. // Controls in List windows
  51. //
  52.  
  53. #define IDC_STATIC    120
  54. #define IDC_LISTBOX    121
  55.  
  56.  
  57. //
  58. // Controls in SendMsg window
  59. //
  60.  
  61. #define IDC_HWNDTOSEND    120
  62. #define IDC_MESSAGES    121
  63. #define IDC_WPARAM        122
  64. #define IDC_LPARAM        123
  65. #define IDC_SEND        124
  66.  
  67.  
  68. //
  69. // WinMain & other EXPORTed window functions
  70. //
  71. #ifndef RC_INVOKED
  72. int  PASCAL WinMain(HANDLE, HANDLE, LPSTR, int);
  73.  
  74. LONG FAR PASCAL PVWndProc(HWND, unsigned, WORD, LONG);
  75. LONG FAR PASCAL GenericViewerWndProc(HWND, unsigned, WORD, LONG);
  76. LONG FAR PASCAL SendMsgWndProc(HWND, unsigned, WORD, LONG);
  77.  
  78. int  FAR PASCAL EnumWindowPropsProc(HWND, LPSTR, HANDLE);
  79. int  FAR PASCAL EnumChildrenProc(HWND, DWORD);
  80. BOOL FAR PASCAL About(HWND, unsigned, WORD, LONG);
  81. #endif
  82.  
  83.